From cde043c55c32bd0e5fdf5e9f546a959bb05bfb61 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 1 Mar 2017 17:46:18 +0000 Subject: [PATCH] tools/fuzz: Remove .d files in clean Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu --- tools/fuzz/libelf/Makefile | 2 +- tools/fuzz/x86_instruction_emulator/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/fuzz/libelf/Makefile b/tools/fuzz/libelf/Makefile index 3313601caa..af44c402d1 100644 --- a/tools/fuzz/libelf/Makefile +++ b/tools/fuzz/libelf/Makefile @@ -30,7 +30,7 @@ distclean: clean .PHONY: clean clean: - rm -f *.o *.a *-libelf-fuzzer + rm -f *.o .*.d *.a *-libelf-fuzzer .PHONY: install install: all diff --git a/tools/fuzz/x86_instruction_emulator/Makefile b/tools/fuzz/x86_instruction_emulator/Makefile index 3b75beb07d..98fd398d3f 100644 --- a/tools/fuzz/x86_instruction_emulator/Makefile +++ b/tools/fuzz/x86_instruction_emulator/Makefile @@ -45,7 +45,7 @@ distclean: clean .PHONY: clean clean: - rm -f *.a *.o *-x86-insn-emulator-fuzzer + rm -f *.a *.o .*.d *-x86-insn-emulator-fuzzer .PHONY: install install: all -- 2.30.2